home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / KEYWORDS < prev    next >
Text File  |  1994-04-25  |  809b  |  35 lines

  1. KEYWORDS:
  2.  
  3.     There are a few keywords in the RLaB language. They are:
  4.  
  5.     if
  6.     else
  7.     while
  8.     for
  9.     in
  10.     break
  11.     continue
  12.     function
  13.     local
  14.     static
  15.     return
  16.     help
  17.     rfile
  18.     quit
  19.     $self
  20.     $$
  21.  
  22.     These words, when seen are instantly recognized as keywords.
  23.     There use as anything else is an error. To get help on any of
  24.     the keywords type `help KEYWORD' (the keyword in upper-case).
  25.  
  26.     Builtin functions are not the same as keywords, although you
  27.     will have some trouble if you try to use one of them as an
  28.     ordinary variable. In fact, builtin functions are ordinary
  29.     variables, with one exception; users cannot change them. Thus,
  30.     if you try to re-assign a builtin function you will get an
  31.     error message.
  32.  
  33.     On the other hand, user-functions are exactly like ordinary
  34.     functions, they can be re-assigned or deleted altogether.
  35.